home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / Other Langs / MacPerl ƒ / Perl Source ƒ / Perl / regexec.c < prev    next >
Text File  |  1993-10-23  |  21KB  |  918 lines

  1. /* NOTE: this is derived from Henry Spencer's regexp code, and should not
  2.  * confused with the original package (see point 3 below).  Thanks, Henry!
  3.  */
  4.  
  5. /* Additional note: this code is very heavily munged from Henry's version
  6.  * in places.  In some spots I've traded clarity for efficiency, so don't
  7.  * blame Henry for some of the lack of readability.
  8.  */
  9.  
  10. /* $RCSfile: regexec.c,v $$Revision: 4.0.1.4 $$Date: 92/06/08 15:25:50 $
  11.  *
  12.  * $Log:    regexec.c,v $
  13.  * Revision 4.0.1.4  92/06/08  15:25:50  lwall
  14.  * patch20: pattern modifiers i and g didn't interact right
  15.  * patch20: in some cases $` and $' didn't get set by match
  16.  * patch20: /x{0}/ was wrongly interpreted as /x{0,}/
  17.  * 
  18.  * Revision 4.0.1.3  91/11/05  18:23:55  lwall
  19.  * patch11: prepared for ctype implementations that don't define isascii()
  20.  * patch11: initial .* in pattern had dependency on value of $*
  21.  * 
  22.  * Revision 4.0.1.2  91/06/07  11:50:33  lwall
  23.  * patch4: new copyright notice
  24.  * patch4: // wouldn't use previous pattern if it started with a null character
  25.  * 
  26.  * Revision 4.0.1.1  91/04/12  09:07:39  lwall
  27.  * patch1: regexec only allocated space for 9 subexpresssions
  28.  * 
  29.  * Revision 4.0  91/03/20  01:39:16  lwall
  30.  * 4.0 baseline.
  31.  * 
  32.  */
  33. /*SUPPRESS 112*/
  34. /*
  35.  * regcomp and regexec -- regsub and regerror are not used in perl
  36.  *
  37.  *    Copyright (c) 1986 by University of Toronto.
  38.  *    Written by Henry Spencer.  Not derived from licensed software.
  39.  *
  40.  *    Permission is granted to anyone to use this software for any
  41.  *    purpose on any computer system, and to redistribute it freely,
  42.  *    subject to the following restrictions:
  43.  *
  44.  *    1. The author is not responsible for the consequences of use of
  45.  *        this software, no matter how awful, even if they arise
  46.  *        from defects in it.
  47.  *
  48.  *    2. The origin of this software must not be misrepresented, either
  49.  *        by explicit claim or by omission.
  50.  *
  51.  *    3. Altered versions must be plainly marked as such, and must not
  52.  *        be misrepresented as being the original software.
  53.  *
  54.  ****    Alterations to Henry's code are...
  55.  ****
  56.  ****    Copyright (c) 1991, Larry Wall
  57.  ****
  58.  ****    You may distribute under the terms of the Perl Artistic License,
  59.  ****    as specified in the README file.
  60.  *
  61.  * Beware that some of this code is subtly aware of the way operator
  62.  * precedence is structured in regular expressions.  Serious changes in
  63.  * regular-expression syntax might require a total rethink.
  64.  */
  65. #include "EXTERN.h"
  66. #include "perl.h"
  67. #include "regcomp.h"
  68.  
  69. #ifndef STATIC
  70. #define    STATIC    static
  71. #endif
  72.  
  73. #ifdef DEBUGGING
  74. int regnarrate = 0;
  75. #endif
  76.  
  77. /*
  78.  * regexec and friends
  79.  */
  80.  
  81. /*
  82.  * Global work variables for regexec().
  83.  */
  84. static char *regprecomp;
  85. static char *reginput;        /* String-input pointer. */
  86. static char regprev;        /* char before regbol, \n if none */
  87. static char *regbol;        /* Beginning of input, for ^ check. */
  88. static char *regeol;        /* End of input, for $ check. */
  89. static char **regstartp;    /* Pointer to startp array. */
  90. static char **regendp;        /* Ditto for endp. */
  91. static char *reglastparen;    /* Similarly for lastparen. */
  92. static char *regtill;
  93.  
  94. static int regmyp_size = 0;
  95. static char **regmystartp = Null(char**);
  96. static char **regmyendp   = Null(char**);
  97.  
  98. /*
  99.  * Forwards.
  100.  */
  101. STATIC int regtry();
  102. STATIC int regmatch();
  103. STATIC int regrepeat();
  104.  
  105. extern int multiline;
  106.  
  107. /*
  108.  - regexec - match a regexp against a string
  109.  */
  110. int
  111. regexec(prog, stringarg, strend, strbeg, minend, screamer, safebase)
  112. register regexp *prog;
  113. char *stringarg;
  114. register char *strend;    /* pointer to null at end of string */
  115. char *strbeg;    /* real beginning of string */
  116. int minend;    /* end of match must be at least minend after stringarg */
  117. STR *screamer;
  118. int safebase;    /* no need to remember string in subbase */
  119. {
  120.     register char *s;
  121.     register int i;
  122.     register char *c;
  123.     register char *string = stringarg;
  124.     register int tmp;
  125.     int minlen = 0;        /* must match at least this many chars */
  126.     int dontbother = 0;    /* how many characters not to try at end */
  127.  
  128.     /* Be paranoid... */
  129.     if (prog == NULL || string == NULL) {
  130.         fatal("NULL regexp parameter");
  131.         return(0);
  132.     }
  133.  
  134.     if (string == strbeg)    /* is ^ valid at stringarg? */
  135.         regprev = '\n';
  136.     else {
  137.         regprev = stringarg[-1];
  138.         if (!multiline && regprev == '\n')
  139.         regprev = '\0';        /* force ^ to NOT match */
  140.     }
  141.     regprecomp = prog->precomp;
  142.     /* Check validity of program. */
  143.     if (UCHARAT(prog->program) != MAGIC) {
  144.         FAIL("corrupted regexp program");
  145.     }
  146.  
  147.     if (prog->do_folding) {
  148.         i = strend - string;
  149.         New(1101,c,i+1,char);
  150.         Copy(string, c, i+1, char);
  151.         string = c;
  152.         strend = string + i;
  153.         for (s = string; s < strend; s++)
  154.             if (isUPPER(*s))
  155.                 *s = tolower(*s);
  156.     }
  157.  
  158.     /* If there is a "must appear" string, look for it. */
  159.     s = string;
  160.     if (prog->regmust != Nullstr &&
  161.         (!(prog->reganch & ROPT_ANCH)
  162.          || (multiline && prog->regback >= 0)) ) {
  163.         if (stringarg == strbeg && screamer) {
  164.             if (screamfirst[prog->regmust->str_rare] >= 0)
  165.                 s = screaminstr(screamer,prog->regmust);
  166.             else
  167.                 s = Nullch;
  168.         }
  169. #ifndef lint
  170.         else
  171.             s = fbminstr((unsigned char*)s, (unsigned char*)strend,
  172.                 prog->regmust);
  173. #endif
  174.         if (!s) {
  175.             ++prog->regmust->str_u.str_useful;    /* hooray */
  176.             goto phooey;    /* not present */
  177.         }
  178.         else if (prog->regback >= 0) {
  179.             s -= prog->regback;
  180.             if (s < string)
  181.                 s = string;
  182.             minlen = prog->regback + prog->regmust->str_cur;
  183.         }
  184.         else if (--prog->regmust->str_u.str_useful < 0) { /* boo */
  185.             str_free(prog->regmust);
  186.             prog->regmust = Nullstr;    /* disable regmust */
  187.             s = string;
  188.         }
  189.         else {
  190.             s = string;
  191.             minlen = prog->regmust->str_cur;
  192.         }
  193.     }
  194.  
  195.     /* Mark beginning of line for ^ . */
  196.     regbol = string;
  197.  
  198.     /* Mark end of line for $ (and such) */
  199.     regeol = strend;
  200.  
  201.     /* see how far we have to get to not match where we matched before */
  202.     regtill = string+minend;
  203.  
  204.     /* Allocate our backreference arrays */
  205.     if ( regmyp_size < prog->nparens + 1 ) {
  206.         /* Allocate or enlarge the arrays */
  207.         regmyp_size = prog->nparens + 1;
  208.         if ( regmyp_size < 10 ) regmyp_size = 10;    /* minimum */
  209.         if ( regmystartp ) {
  210.         /* reallocate larger */
  211.         Renew(regmystartp,regmyp_size,char*);
  212.         Renew(regmyendp,  regmyp_size,char*);
  213.         }
  214.         else {
  215.         /* Initial allocation */
  216.         New(1102,regmystartp,regmyp_size,char*);
  217.         New(1102,regmyendp,  regmyp_size,char*);
  218.         }
  219.     
  220.     }
  221.  
  222.     /* Simplest case:  anchored match need be tried only once. */
  223.     /*  [unless multiline is set] */
  224.     if (prog->reganch & ROPT_ANCH) {
  225.         if (regtry(prog, string))
  226.             goto got_it;
  227.         else if (multiline || (prog->reganch & ROPT_IMPLICIT)) {
  228.             if (minlen)
  229.                 dontbother = minlen - 1;
  230.             strend -= dontbother;
  231.             /* for multiline we only have to try after newlines */
  232.             if (s > string)
  233.                 s--;
  234.             while (s < strend) {
  235.                 if (*s++ == '\n') {
  236.                 if (s < strend && regtry(prog, s))
  237.                     goto got_it;
  238.                 }
  239.             }
  240.         }
  241.         goto phooey;
  242.     }
  243.  
  244.     /* Messy cases:  unanchored match. */
  245.     if (prog->regstart) {
  246.         if (prog->reganch & ROPT_SKIP) {  /* we have /x+whatever/ */
  247.             /* it must be a one character string */
  248.             i = prog->regstart->str_ptr[0];
  249.             while (s < strend) {
  250.                 if (*s == i) {
  251.                     if (regtry(prog, s))
  252.                         goto got_it;
  253.                     s++;
  254.                     while (s < strend && *s == i)
  255.                     s++;
  256.                 }
  257.                 s++;
  258.             }
  259.         }
  260.         else if (prog->regstart->str_pok == 3) {
  261.             /* We know what string it must start with. */
  262. #ifndef lint
  263.             while ((s = fbminstr((unsigned char*)s,
  264.               (unsigned char*)strend, prog->regstart)) != NULL)
  265. #else
  266.             while (s = Nullch)
  267. #endif
  268.             {
  269.                 if (regtry(prog, s))
  270.                     goto got_it;
  271.                 s++;
  272.             }
  273.         }
  274.         else {
  275.             c = prog->regstart->str_ptr;
  276.             while ((s = ninstr(s, strend,
  277.               c, c + prog->regstart->str_cur )) != NULL) {
  278.                 if (regtry(prog, s))
  279.                     goto got_it;
  280.                 s++;
  281.             }
  282.         }
  283.         goto phooey;
  284.     }
  285.     /*SUPPRESS 560*/
  286.     if (c = prog->regstclass) {
  287.         int doevery = (prog->reganch & ROPT_SKIP) == 0;
  288.  
  289.         if (minlen)
  290.             dontbother = minlen - 1;
  291.         strend -= dontbother;    /* don't bother with what can't match */
  292.         tmp = 1;
  293.         /* We know what class it must start with. */
  294.         switch (OP(c)) {
  295.         case ANYOF:
  296.             c = OPERAND(c);
  297.             while (s < strend) {
  298.                 i = UCHARAT(s);
  299.                 if (!(c[i >> 3] & (1 << (i&7)))) {
  300.                     if (tmp && regtry(prog, s))
  301.                         goto got_it;
  302.                     else
  303.                         tmp = doevery;
  304.                 }
  305.                 else
  306.                     tmp = 1;
  307.                 s++;
  308.             }
  309.             break;
  310.         case BOUND:
  311.             if (minlen)
  312.             dontbother++,strend--;
  313.             if (s != string) {
  314.             i = s[-1];
  315.             tmp = isALNUM(i);
  316.             }
  317.             else
  318.             tmp = isALNUM(regprev);    /* assume not alphanumeric */
  319.             while (s < strend) {
  320.                 i = *s;
  321.                 if (tmp != isALNUM(i)) {
  322.                     tmp = !tmp;
  323.                     if (regtry(prog, s))
  324.                         goto got_it;
  325.                 }
  326.                 s++;
  327.             }
  328.             if ((minlen || tmp) && regtry(prog,s))
  329.                 goto got_it;
  330.             break;
  331.         case NBOUND:
  332.             if (minlen)
  333.             dontbother++,strend--;
  334.             if (s != string) {
  335.             i = s[-1];
  336.             tmp = isALNUM(i);
  337.             }
  338.             else
  339.             tmp = isALNUM(regprev);    /* assume not alphanumeric */
  340.             while (s < strend) {
  341.                 i = *s;
  342.                 if (tmp != isALNUM(i))
  343.                     tmp = !tmp;
  344.                 else if (regtry(prog, s))
  345.                     goto got_it;
  346.                 s++;
  347.             }
  348.             if ((minlen || !tmp) && regtry(prog,s))
  349.                 goto got_it;
  350.             break;
  351.         case ALNUM:
  352.             while (s < strend) {
  353.                 i = *s;
  354.                 if (isALNUM(i)) {
  355.                     if (tmp && regtry(prog, s))
  356.                         goto got_it;
  357.                     else
  358.                         tmp = doevery;
  359.                 }
  360.                 else
  361.                     tmp = 1;
  362.                 s++;
  363.             }
  364.             break;
  365.         case NALNUM:
  366.             while (s < strend) {
  367.                 i = *s;
  368.                 if (!isALNUM(i)) {
  369.                     if (tmp && regtry(prog, s))
  370.                         goto got_it;
  371.                     else
  372.                         tmp = doevery;
  373.                 }
  374.                 else
  375.                     tmp = 1;
  376.                 s++;
  377.             }
  378.             break;
  379.         case SPACE:
  380.             while (s < strend) {
  381.                 if (isSPACE(*s)) {
  382.                     if (tmp && regtry(prog, s))
  383.                         goto got_it;
  384.                     else
  385.                         tmp = doevery;
  386.                 }
  387.                 else
  388.                     tmp = 1;
  389.                 s++;
  390.             }
  391.             break;
  392.         case NSPACE:
  393.             while (s < strend) {
  394.                 if (!isSPACE(*s)) {
  395.                     if (tmp && regtry(prog, s))
  396.                         goto got_it;
  397.                     else
  398.                         tmp = doevery;
  399.                 }
  400.                 else
  401.                     tmp = 1;
  402.                 s++;
  403.             }
  404.             break;
  405.         case DIGIT:
  406.             while (s < strend) {
  407.                 if (isDIGIT(*s)) {
  408.                     if (tmp && regtry(prog, s))
  409.                         goto got_it;
  410.                     else
  411.                         tmp = doevery;
  412.                 }
  413.                 else
  414.                     tmp = 1;
  415.                 s++;
  416.             }
  417.             break;
  418.         case NDIGIT:
  419.             while (s < strend) {
  420.                 if (!isDIGIT(*s)) {
  421.                     if (tmp && regtry(prog, s))
  422.                         goto got_it;
  423.                     else
  424.                         tmp = doevery;
  425.                 }
  426.                 else
  427.                     tmp = 1;
  428.                 s++;
  429.             }
  430.             break;
  431.         }
  432.     }
  433.     else {
  434.         if (minlen)
  435.             dontbother = minlen - 1;
  436.         strend -= dontbother;
  437.         /* We don't know much -- general case. */
  438.         do {
  439.             if (regtry(prog, s))
  440.                 goto got_it;
  441.         } while (s++ < strend);
  442.     }
  443.  
  444.     /* Failure. */
  445.     goto phooey;
  446.  
  447.     got_it:
  448.     prog->subbeg = strbeg;
  449.     prog->subend = strend;
  450.     if ((!safebase && (prog->nparens || sawampersand)) || prog->do_folding){
  451.         strend += dontbother;    /* uncheat */
  452.         if (safebase)            /* no need for $digit later */
  453.             s = strbeg;
  454.         else if (strbeg != prog->subbase) {
  455.             i = strend - string + (stringarg - strbeg);
  456.             s = nsavestr(strbeg,i);    /* so $digit will work later */
  457.             if (prog->subbase)
  458.                 Safefree(prog->subbase);
  459.             prog->subbeg = prog->subbase = s;
  460.             prog->subend = s+i;
  461.         }
  462.         else {
  463.             i = strend - string + (stringarg - strbeg);
  464.             prog->subbeg = s = prog->subbase;
  465.             prog->subend = s+i;
  466.         }
  467.         s += (stringarg - strbeg);
  468.         for (i = 0; i <= prog->nparens; i++) {
  469.             if (prog->endp[i]) {
  470.                 prog->startp[i] = s + (prog->startp[i] - string);
  471.                 prog->endp[i] = s + (prog->endp[i] - string);
  472.             }
  473.         }
  474.         if (prog->do_folding)
  475.             Safefree(string);
  476.     }
  477.     return(1);
  478.  
  479.     phooey:
  480.     if (prog->do_folding)
  481.         Safefree(string);
  482.     return(0);
  483. }
  484.  
  485. /*
  486.  - regtry - try match at specific point
  487.  */
  488. static int            /* 0 failure, 1 success */
  489. regtry(prog, string)
  490. regexp *prog;
  491. char *string;
  492. {
  493.     register int i;
  494.     register char **sp;
  495.     register char **ep;
  496.  
  497.     reginput = string;
  498.     regstartp = prog->startp;
  499.     regendp = prog->endp;
  500.     reglastparen = &prog->lastparen;
  501.     prog->lastparen = 0;
  502.  
  503.     sp = prog->startp;
  504.     ep = prog->endp;
  505.     if (prog->nparens) {
  506.         for (i = prog->nparens; i >= 0; i--) {
  507.             *sp++ = NULL;
  508.             *ep++ = NULL;
  509.         }
  510.     }
  511.     if (regmatch(prog->program + 1) && reginput >= regtill) {
  512.         prog->startp[0] = string;
  513.         prog->endp[0] = reginput;
  514.         return(1);
  515.     } else
  516.         return(0);
  517. }
  518.  
  519. /*
  520.  - regmatch - main matching routine
  521.  *
  522.  * Conceptually the strategy is simple:  check to see whether the current
  523.  * node matches, call self recursively to see whether the rest matches,
  524.  * and then act accordingly.  In practice we make some effort to avoid
  525.  * recursion, in particular by going through "ordinary" nodes (that don't
  526.  * need to know whether the rest of the match failed) by a loop instead of
  527.  * by recursion.
  528.  */
  529. /* [lwall] I've hoisted the register declarations to the outer block in order to
  530.  * maybe save a little bit of pushing and popping on the stack.  It also takes
  531.  * advantage of machines that use a register save mask on subroutine entry.
  532.  */
  533. static int            /* 0 failure, 1 success */
  534. regmatch(prog)
  535. char *prog;
  536. {
  537.     register char *scan;    /* Current node. */
  538.     char *next;        /* Next node. */
  539.     register int nextchar;
  540.     register int n;        /* no or next */
  541.     register int ln;        /* len or last */
  542.     register char *s;    /* operand or save */
  543.     register char *locinput = reginput;
  544.  
  545.     nextchar = *locinput;
  546.     scan = prog;
  547. #ifdef DEBUGGING
  548. #ifdef macintosh
  549.     if (scan != NULL && regnarrate)
  550.         fprintf(perldbg, "%s(\n", regprop(scan));
  551. #else
  552.     if (scan != NULL && regnarrate)
  553.         fprintf(stderr, "%s(\n", regprop(scan));
  554. #endif
  555. #endif
  556.     while (scan != NULL) {
  557. #ifdef DEBUGGING
  558. #ifdef macintosh
  559.         if (regnarrate)
  560.             fprintf(perldbg, "%s...\n", regprop(scan));
  561. #else
  562.         if (regnarrate)
  563.             fprintf(stderr, "%s...\n", regprop(scan));
  564. #endif
  565. #endif
  566.  
  567. #ifdef REGALIGN
  568.         next = scan + NEXT(scan);
  569.         if (next == scan)
  570.             next = NULL;
  571. #else
  572.         next = regnext(scan);
  573. #endif
  574.  
  575.         switch (OP(scan)) {
  576.         case BOL:
  577.             if (locinput == regbol ? regprev == '\n' :
  578.                 ((nextchar || locinput < regeol) &&
  579.                   locinput[-1] == '\n') )
  580.             {
  581.                 /* regtill = regbol; */
  582.                 break;
  583.             }
  584.             return(0);
  585.         case EOL:
  586.             if ((nextchar || locinput < regeol) && nextchar != '\n')
  587.                 return(0);
  588.             if (!multiline && regeol - locinput > 1)
  589.                 return 0;
  590.             /* regtill = regbol; */
  591.             break;
  592.         case ANY:
  593.             if ((nextchar == '\0' && locinput >= regeol) ||
  594.               nextchar == '\n')
  595.                 return(0);
  596.             nextchar = *++locinput;
  597.             break;
  598.         case EXACTLY:
  599.             s = OPERAND(scan);
  600.             ln = *s++;
  601.             /* Inline the first character, for speed. */
  602.             if (*s != nextchar)
  603.                 return(0);
  604.             if (regeol - locinput < ln)
  605.                 return 0;
  606.             if (ln > 1 && bcmp(s, locinput, ln) != 0)
  607.                 return(0);
  608.             locinput += ln;
  609.             nextchar = *locinput;
  610.             break;
  611.         case ANYOF:
  612.             s = OPERAND(scan);
  613.             if (nextchar < 0)
  614.                 nextchar = UCHARAT(locinput);
  615.             if (s[nextchar >> 3] & (1 << (nextchar&7)))
  616.                 return(0);
  617.             if (!nextchar && locinput >= regeol)
  618.                 return 0;
  619.             nextchar = *++locinput;
  620.             break;
  621.         case ALNUM:
  622.             if (!nextchar)
  623.                 return(0);
  624.             if (!isALNUM(nextchar))
  625.                 return(0);
  626.             nextchar = *++locinput;
  627.             break;
  628.         case NALNUM:
  629.             if (!nextchar && locinput >= regeol)
  630.                 return(0);
  631.             if (isALNUM(nextchar))
  632.                 return(0);
  633.             nextchar = *++locinput;
  634.             break;
  635.         case NBOUND:
  636.         case BOUND:
  637.             if (locinput == regbol)    /* was last char in word? */
  638.                 ln = isALNUM(regprev);
  639.             else 
  640.                 ln = isALNUM(locinput[-1]);
  641.             n = isALNUM(nextchar); /* is next char in word? */
  642.             if ((ln == n) == (OP(scan) == BOUND))
  643.                 return(0);
  644.             break;
  645.         case SPACE:
  646.             if (!nextchar && locinput >= regeol)
  647.                 return(0);
  648.             if (!isSPACE(nextchar))
  649.                 return(0);
  650.             nextchar = *++locinput;
  651.             break;
  652.         case NSPACE:
  653.             if (!nextchar)
  654.                 return(0);
  655.             if (isSPACE(nextchar))
  656.                 return(0);
  657.             nextchar = *++locinput;
  658.             break;
  659.         case DIGIT:
  660.             if (!isDIGIT(nextchar))
  661.                 return(0);
  662.             nextchar = *++locinput;
  663.             break;
  664.         case NDIGIT:
  665.             if (!nextchar && locinput >= regeol)
  666.                 return(0);
  667.             if (isDIGIT(nextchar))
  668.                 return(0);
  669.             nextchar = *++locinput;
  670.             break;
  671.         case REF:
  672.             n = ARG1(scan);  /* which paren pair */
  673.             s = regmystartp[n];
  674.             if (!s)
  675.                 return(0);
  676.             if (!regmyendp[n])
  677.                 return(0);
  678.             if (s == regmyendp[n])
  679.                 break;
  680.             /* Inline the first character, for speed. */
  681.             if (*s != nextchar)
  682.                 return(0);
  683.             ln = regmyendp[n] - s;
  684.             if (locinput + ln > regeol)
  685.                 return 0;
  686.             if (ln > 1 && bcmp(s, locinput, ln) != 0)
  687.                 return(0);
  688.             locinput += ln;
  689.             nextchar = *locinput;
  690.             break;
  691.  
  692.         case NOTHING:
  693.             break;
  694.         case BACK:
  695.             break;
  696.         case OPEN:
  697.             n = ARG1(scan);  /* which paren pair */
  698.             reginput = locinput;
  699.  
  700.             regmystartp[n] = locinput;    /* for REF */
  701.             if (regmatch(next)) {
  702.                 /*
  703.                  * Don't set startp if some later
  704.                  * invocation of the same parentheses
  705.                  * already has.
  706.                  */
  707.                 if (regstartp[n] == NULL)
  708.                     regstartp[n] = locinput;
  709.                 return(1);
  710.             } else
  711.                 return(0);
  712.             /* NOTREACHED */
  713.         case CLOSE: {
  714.                 n = ARG1(scan);  /* which paren pair */
  715.                 reginput = locinput;
  716.  
  717.                 regmyendp[n] = locinput;    /* for REF */
  718.                 if (regmatch(next)) {
  719.                     /*
  720.                      * Don't set endp if some later
  721.                      * invocation of the same parentheses
  722.                      * already has.
  723.                      */
  724.                     if (regendp[n] == NULL) {
  725.                         regendp[n] = locinput;
  726.                         if (n > *reglastparen)
  727.                             *reglastparen = n;
  728.                     }
  729.                     return(1);
  730.                 } else
  731.                     return(0);
  732.             }
  733.             /*NOTREACHED*/
  734.         case BRANCH: {
  735.                 if (OP(next) != BRANCH)        /* No choice. */
  736.                     next = NEXTOPER(scan);    /* Avoid recursion. */
  737.                 else {
  738.                     do {
  739.                         reginput = locinput;
  740.                         if (regmatch(NEXTOPER(scan)))
  741.                             return(1);
  742. #ifdef REGALIGN
  743.                         /*SUPPRESS 560*/
  744.                         if (n = NEXT(scan))
  745.                             scan += n;
  746.                         else
  747.                             scan = NULL;
  748. #else
  749.                         scan = regnext(scan);
  750. #endif
  751.                     } while (scan != NULL && OP(scan) == BRANCH);
  752.                     return(0);
  753.                     /* NOTREACHED */
  754.                 }
  755.             }
  756.             break;
  757.         case CURLY:
  758.             ln = ARG1(scan);  /* min to match */
  759.             n  = ARG2(scan);  /* max to match */
  760.             scan = NEXTOPER(scan) + 4;
  761.             goto repeat;
  762.         case STAR:
  763.             ln = 0;
  764.             n = 32767;
  765.             scan = NEXTOPER(scan);
  766.             goto repeat;
  767.         case PLUS:
  768.             /*
  769.              * Lookahead to avoid useless match attempts
  770.              * when we know what character comes next.
  771.              */
  772.             ln = 1;
  773.             n = 32767;
  774.             scan = NEXTOPER(scan);
  775.             repeat:
  776.             if (OP(next) == EXACTLY)
  777.                 nextchar = *(OPERAND(next)+1);
  778.             else
  779.                 nextchar = -1000;
  780.             reginput = locinput;
  781.             n = regrepeat(scan, n);
  782.             if (!multiline && OP(next) == EOL && ln < n)
  783.                 ln = n;            /* why back off? */
  784.             while (n >= ln) {
  785.                 /* If it could work, try it. */
  786.                 if (nextchar == -1000 || *reginput == nextchar)
  787.                     if (regmatch(next))
  788.                         return(1);
  789.                 /* Couldn't or didn't -- back up. */
  790.                 n--;
  791.                 reginput = locinput + n;
  792.             }
  793.             return(0);
  794.         case END:
  795.             reginput = locinput; /* put where regtry can find it */
  796.             return(1);    /* Success! */
  797.         default:
  798.             printf("%x %d\n",scan,scan[1]);
  799.             FAIL("regexp memory corruption");
  800.         }
  801.  
  802.         scan = next;
  803.     }
  804.  
  805.     /*
  806.      * We get here only if there's trouble -- normally "case END" is
  807.      * the terminating point.
  808.      */
  809.     FAIL("corrupted regexp pointers");
  810.     /*NOTREACHED*/
  811. #ifdef lint
  812.     return 0;
  813. #endif
  814. }
  815.  
  816. /*
  817.  - regrepeat - repeatedly match something simple, report how many
  818.  */
  819. /*
  820.  * [This routine now assumes that it will only match on things of length 1.
  821.  * That was true before, but now we assume scan - reginput is the count,
  822.  * rather than incrementing count on every character.]
  823.  */
  824. static int
  825. regrepeat(p, max)
  826. char *p;
  827. int max;
  828. {
  829.     register char *scan;
  830.     register char *opnd;
  831.     register int c;
  832.     register char *loceol = regeol;
  833.  
  834.     scan = reginput;
  835.     if (max != 32767 && max < loceol - scan)
  836.         loceol = scan + max;
  837.     opnd = OPERAND(p);
  838.     switch (OP(p)) {
  839.     case ANY:
  840.         while (scan < loceol && *scan != '\n')
  841.             scan++;
  842.         break;
  843.     case EXACTLY:        /* length of string is 1 */
  844.         opnd++;
  845.         while (scan < loceol && *opnd == *scan)
  846.             scan++;
  847.         break;
  848.     case ANYOF:
  849.         c = UCHARAT(scan);
  850.         while (scan < loceol && !(opnd[c >> 3] & (1 << (c & 7)))) {
  851.             scan++;
  852.             c = UCHARAT(scan);
  853.         }
  854.         break;
  855.     case ALNUM:
  856.         while (scan < loceol && isALNUM(*scan))
  857.             scan++;
  858.         break;
  859.     case NALNUM:
  860.         while (scan < loceol && !isALNUM(*scan))
  861.             scan++;
  862.         break;
  863.     case SPACE:
  864.         while (scan < loceol && isSPACE(*scan))
  865.             scan++;
  866.         break;
  867.     case NSPACE:
  868.         while (scan < loceol && !isSPACE(*scan))
  869.             scan++;
  870.         break;
  871.     case DIGIT:
  872.         while (scan < loceol && isDIGIT(*scan))
  873.             scan++;
  874.         break;
  875.     case NDIGIT:
  876.         while (scan < loceol && !isDIGIT(*scan))
  877.             scan++;
  878.         break;
  879.     default:        /* Oh dear.  Called inappropriately. */
  880.         FAIL("internal regexp foulup");
  881.         /* NOTREACHED */
  882.     }
  883.  
  884.     c = scan - reginput;
  885.     reginput = scan;
  886.  
  887.     return(c);
  888. }
  889.  
  890. /*
  891.  - regnext - dig the "next" pointer out of a node
  892.  *
  893.  * [Note, when REGALIGN is defined there are two places in regmatch()
  894.  * that bypass this code for speed.]
  895.  */
  896. char *
  897. regnext(p)
  898. register char *p;
  899. {
  900.     register int offset;
  901.  
  902.     if (p == ®dummy)
  903.         return(NULL);
  904.  
  905.     offset = NEXT(p);
  906.     if (offset == 0)
  907.         return(NULL);
  908.  
  909. #ifdef REGALIGN
  910.     return(p+offset);
  911. #else
  912.     if (OP(p) == BACK)
  913.         return(p-offset);
  914.     else
  915.         return(p+offset);
  916. #endif
  917. }
  918.